<?xml version="1.0"?>

<configuration>

    <appSettings/>

    <connectionStrings>
      <add name="AdventureWorks" 
   connectionString="Server=localhost;Integrated Security=True;Database=AdventureWorks" 
       providerName="System.Data.SqlClient" />
    </connectionStrings>

  <system.web>

        <compilation debug="false" />

        <authentication mode="Forms">
           <forms name="Wrox" loginUrl="Login.aspx" path="/">
              <credentials passwordFormat="Clear">
                 <user name="BillEvjen" password="Bubbles" />
              </credentials>
           </forms>
        </authentication>

    </system.web>
</configuration>
